php random float number with 2 decimal places

113

php random float number with 2 decimal places -

$decimals = 2; // number of decimal places
$div = pow(10, $decimals);

// Syntax: mt_rand(min, max);
mt_rand(0.01 * $div, 0.05 * $div) / $div;

Comments

Submit
0 Comments